home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / Converters / PCX_SCRATCH / Makefile < prev    next >
Encoding:
Makefile  |  1993-01-19  |  238 b   |  14 lines

  1. CFLAGS = -I.. -I. -I../.. -O -g -Wall 
  2.  
  3. SRC = pcxread.m pcxwrite.m kludge.m 
  4. OBJ = pcxread.o pcxwrite.o kludge.o
  5.  
  6. main: libpcx.a 
  7.  
  8. libpcx.a: $(OBJ)
  9.     $(AR) rc libpcx.a $(OBJ)
  10.     $(RANLIB) libpcx.a 
  11.  
  12. clean:
  13.     rm -rf *.o *~ libpcx.a test out.*
  14.